uuid
Generate and parse UUIDs.
Provides support for Universally Unique Identifiers (UUIDs). A UUID is a unique 128-bit number, stored as 16 octets. UUIDs are used to assign unique identifiers to entities without requiring a central allocating authority.
They are particularly useful in distributed systems, though they can be used in disparate areas, such as databases and network protocols. Typically a UUID is displayed in a readable string form as a sequence of hexadecimal digits, separated into groups by hyphens.
The uniqueness property is not strictly guaranteed, however for all practical purposes, it can be assumed that an unintentional collision would be extremely unlikely.
Dependencies
By default, this crate depends on nothing but std
and cannot generate
Uuid
s. You need to enable the following Cargo features to enable
various pieces of functionality:
v1
- adds theUuid::new_v1
function and the ability to create a V1 using an implementation ofuuid::v1::ClockSequence
(usuallyuuid::v1::Context
) and a timestamp fromtime::timespec
.v3
- adds theUuid::new_v3
function and the ability to create a V3 UUID based on the MD5 hash of some data.v4
- adds theUuid::new_v4
function and the ability to randomly generate aUuid
.v5
- adds theUuid::new_v5
function and the ability to create a V5 UUID based on the SHA1 hash of some data.serde
- adds the ability to serialize and deserialize aUuid
using theserde
crate.
You need to enable one of the following Cargo features together with
v3
, v4
or v5
feature if you're targeting wasm32-unknown-unknown
target:
stdweb
- enables support forOsRng
onwasm32-unknown-unknown
viastdweb
combined withcargo-web
wasm-bindgen
-wasm-bindgen
enables support forOsRng
onwasm32-unknown-unknown
viawasm-bindgen
By default, uuid
can be depended on with:
[]
= "0.8"
To activate various features, use syntax like:
[]
= { = "0.8", = ["serde", "v4"] }
You can disable default features with:
[]
= { = "0.8", = false }
Examples
To parse a UUID given in the simple format and print it as a urn:
use Uuid;
To create a new random (V4) UUID and print it out in hexadecimal form:
// Note that this requires the `v4` feature enabled in the uuid crate.
use Uuid;
Strings
Examples of string representations:
- simple:
936DA01F9ABD4d9d80C702AF85C822A8
- hyphenated:
550e8400-e29b-41d4-a716-446655440000
- urn:
urn:uuid:F9168C5E-CEB2-4faa-B6BF-329BF39FA1E4
References
- Wikipedia: Universally Unique Identifier
- RFC4122: A Universally Unique IDentifier (UUID) URN Namespace
License
Licensed under either of
- Apache License, Version 2.0, (LICENSE-APACHE or https://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or https://opensource.org/licenses/MIT)
at your option.
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.